home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / umich / network / ka9q / nhclb120.zoo / alloc.h < prev    next >
C/C++ Source or Header  |  1992-02-11  |  217b  |  17 lines

  1. #ifndef    NULL
  2. #define    NULL    (void *)0
  3. #endif
  4.  
  5. #define    NULLCHAR    (char *)NULL
  6. union header {
  7.     struct {
  8.         union header *ptr;
  9.         unsigned size;
  10.     } s;
  11.     long l;
  12. };
  13.  
  14. typedef union header HEADER;
  15. #define    NULLHDR    (HEADER *)NULL
  16.  
  17.